VintaSoft Imaging .NET SDK 14.0: Documentation for .NET developer
Vintasoft.Imaging Namespace / PixelManipulator Class / WriteRowData Methods / WriteRowData(Int32,Byte[]) Method
Syntax Exceptions Requirements SeeAlso
In This Topic
    WriteRowData(Int32,Byte[]) Method (PixelManipulator)
    In This Topic
    Writes the row data.
    Syntax
    'Declaration
    
    Public Overloads Sub WriteRowData( _
    ByVal row
    Row index.
    As System.Int32, _
    ByVal rowData
    The buffer to read data from.
    () As Byte _
    )
    public void WriteRowData(
    System.Int32 row,
    byte[] rowData
    )
    public: void WriteRowData(
    System.Int32 row,
    byte[]* rowData
    )
    public:
    void WriteRowData(
    System.Int32 row,
    array<byte>^ rowData
    )

    Parameters

    row
    Row index.
    rowData
    The buffer to read data from.
    Exceptions
    ExceptionDescription
    Thrown if row is less than 0 or row is more or equal than the image height or offset is less than 0 or rowData does not have enough space for storing the data.
    Thrown if rowData is null.
    Requirements

    Target Platforms: .NET9; .NET 8; .NET 7; .NET 6; .NET Framework 4.8, 4.7, 4.6, 4.5, 4.0, 3.5

    See Also